body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0px;
    background-color: #e0f2fe; /* Background color for air action section */
}
.container {
    max-width: 2560px;
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    flex-wrap: wrap; /* Ensure the header items wrap if they overflow */
}

header .logo {
    margin: auto;
    cursor: pointer;
}

header .logo img {
    height: 80px;
}

.navbar-desktop {
    margin: 0 auto;
}

.navbar-desktop ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.navbar-desktop ul li {
    margin-left: 100px;
    position: relative;
}

.navbar-desktop ul li a {
    text-decoration: none;
    color: #2e63af;
    font-weight: bold; /* Set normal font weight for the main menu items */
    display: block; /* Ensure each menu item is treated as a block element */
    text-align: left; /* Left align text */
    padding-bottom: 1px; /* Adjust spacing between main text and subtext */
    transition: color 0.2s ease; /* Smooth transition for text color */
}

.navbar-desktop ul li a span {
    font-size: 0.9em; /* Adjusted font size for the subtext */
    display: block; /* Ensure subtext is on a new line */
    font-weight: normal; /* Keep subtext normal weight */
}

.navbar-desktop ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    list-style: none;
    padding: 10px; /* Adjusted padding */
    margin: 0; /* Remove default margin */
    min-width: 200px; /* Set a minimum width */
}

.navbar-desktop ul li .dropdown-content li {
    margin: 0;
}

.navbar-desktop ul li .dropdown-content li a {
    padding: 10px 20px; /* Adjusted padding */
    color: #2e63af;
    text-decoration: none;
    display: block;
    font-size: 0.9em; /* Adjust font size */
    font-weight: normal; /* Adjust font weight as needed */
}

.navbar-desktop ul li .dropdown-content li a:hover {
    background-color: rgba(116, 208, 243, 0.3); /* Adjust alpha value (0.5 for 50% opacity) */
}

.navbar-desktop ul li:hover > a {
    color: rgba(116, 208, 243, 1); /* Hover text color */
}

.navbar-desktop ul li:hover .dropdown-content {
    display: block;
}
.burger-menu {
    display: none;
}

.nav-menu-mobile {
    background-color: #333;
    position: absolute;
    top: 60px; /* Adjust based on your header height */
    right: 0;
    width: 100%;
    text-align: center;
}
.nav-menu-mobile a {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
}

.nav-menu-mobile {
    display: none;
}
.hero-mobile {
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
    align-items: center;
}
.hero-mobile img{
    width: 100%;
}

.hero-mobile-text {
    position: absolute;
    left: 30%;
    flex-wrap: nowrap;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    align-items: left;
    margin-top: 20%;
}
.hero-mobile-text h1 {
    font-size: 1.8em;
    font-weight: bold;
}
.hero-mobile {
    display: none;
}

.hero {
    position: relative;
    text-align: left;
    color: white;
    margin-top: 100px; /* Adjust margin-top to prevent content from being hidden behind the fixed header */
    margin-bottom: 0px;
}

.hero img {
    width: 100%;
    height: 100;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 28.0%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-text h1 {
    font-size: 2.7em;
    margin: 0;
}

.hero-text p {
    font-size: 1.0em;
    margin: 10px 0;
}

.content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20px; /* Adjust padding as needed */
    background-image: url('images/content-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-text {
    flex: 1;
    max-width: 90%;
    z-index: 1; /* Ensure text is above background image */
    position: relative; /* Ensure relative positioning for absolute positioning within */
    text-align: left;
    background: rgba(255, 255, 255, 0.0); /* Optional: Semi-transparent background for readability */
    padding: 50px; /* Optional: Padding for content text */
}

.content-text h2 {
    font-size: 2.5em;
    color: #2e63af;
    margin-bottom: 20px;
    margin-top: 0px;
}

.content-text p {
    font-size: 1.2em;
    color: #666;
}

.ocean-content-image {
    flex: 1;
    text-align: right;
    margin-right: 80px; /* Adjust margin as needed to move it further right */
    z-index: 1; /* Ensure image is above background image */
}

.ocean-content-image img {
    max-width: 97%;
    height: auto;
}

.content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.0); /* Optional: Overlay color for better contrast */
}


.benefits {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to bottom right, white, #74d0f3); /* Gradient background */
    align-items: center;
    padding: 100px 20px; /* Adjust padding as needed */
    margin-top: 0px;
}

.benefits-text {
    flex: 1;
    max-width: 90%;
    z-index: 1; /* Ensure text is above background image */
    position: relative; /* Ensure relative positioning for absolute positioning within */
    text-align: left;
    padding: 50px; /* Optional: Padding for content text */

}

.benefits-text h2 {
    font-size: 2.5em;
    color: #2e63af;
    margin-bottom: 20px;
}

.benefits-text ul {
    list-style-type: disc;
    margin-left: 40px;
    font-size: 1.2em;
    color: #666;
}

.ocean-benefits-image {
    flex: 1;
    text-align: center;
    margin-right: 0px;

}
.ocean-benefits-image img {
    max-width: 97%;
    height: auto;
    margin-left: 0;
}


.ocean-action {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 100px 0px; /* Adjust padding as needed */
    background-color: #e0f2fe; /* Background color for air action section */
    padding-right: 90px;
    padding-left: 0px;
    background-size: cover;
}

.ocean-action-image {
    flex: 1;
    text-align: center;
}

.ocean-action-image img {
    max-width: 97%;
    height: auto;
    padding: 20px 20px;
}

.ocean-action-text {
    flex: 1;
    max-width: 40%;
    margin-bottom: 50px;
    margin-right: 70px;
}

.ocean-action-text h2 {
    font-size: 2.5em;
    color: #2e63af;
    margin-top: 0;
    margin-bottom: 20px;
    margin-right: 60px;
}

.ocean-action-text ul {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
    margin-right: 70px;
    text-align: left;
}

.action-button {
    position: relative;
    padding: 15px 30px;
    background-color: #74d0f3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: normal;
    transition: background-color 0.3s ease;
    justify-self: center;
    top: 50px;
    cursor: pointer;
}
.action-button:hover {
    background-color: #2e63af;
}


.whatsapp-icon {
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 1005; 
    justify-content: right;
    align-items: center;
}
.whatsapp-icon a img {
    width: 50px;
    margin-left: auto;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

footer {
    background-color: #015397;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 60px; /* Adjust the gap between items as needed */
    margin-bottom: 20px;
}


.footer-nav > div {
    text-align: left;
}

.footer-nav h3 {
    color: #fff;
    font-size: 1.0em;
    margin-bottom: 5px;
    font-weight: 550; /* Reduce font weight */
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 5px;
}

.footer-nav a {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #74d0f3;
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 10px 0;
}

.addresses {
    display: flex;
    flex-wrap: wrap;
    flex: 1; /* Takes up the available space */
    margin-left: 20px; /* Increase left margin for indent */
    gap: 100px;
    margin-bottom: 50px;
}
.addresses h4 {
    font-weight: 550;
}

.social-media {
    flex: 1; /* Takes up the available space */
    text-align: center;
}

.social-media a {
    cursor: pointer;
    margin-left: 10px; /* Adjusted margin between icons */
    display: inline-block; /* Ensure each icon is inline */
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition */
}

.social-media a:hover {
    filter: brightness(1.5); /* Adjust brightness on hover */
    transform: translateY(-3px); /* Move icon up slightly on hover */
}
.social-media img {
    height: 30px; /* Adjust size as needed */
}
.footer-info p {
    margin: 0; /* Remove default margin */

}

.footer-info:last-of-type {
    text-align: center; /* Center align the copyright notice */
    margin-top: 20px; /* Provide some space above the copyright notice */
}
.footer-info:last-of-type p {
    margin-left: 120px; /* Ensure same left margin as address */
}

.footer-info-copyright {
    padding-top: 0;
    align-self: flex-start;
}
.horizontal-line {
    border-top: 1px solid #fff; /* Adjust the color as needed */
    margin: 30px auto; /* Adjust the margin to center and provide vertical space */
    width: 83%; /* Adjust the width as needed */
}


@media (max-width: 1250px) {
    .container{
        width: 100%;
    }

    .footer-nav{
        flex-wrap: wrap;
        padding: 30px 30px;
    }
}


@media (max-width: 1205px) {
    .container {
        width: 100%;
    }

    .hero-text {
        margin-left: 50px;
    }
    .navbar-desktop{
        margin-right: 70px;
    }
    .navbar-desktop ul li{
        font-size: 0.8em;
        margin-inline: 20px;
    }
    .services {
        gap: 20px 50px;
    }
}

@media (max-width: 1100px){
    container{
        width: 100%;
    }

    .services {
        gap: 20px 50px;
    }
}

@media (max-width: 1125px) {
    .container {
        width: 100%;
    }

    header .logo {
        margin-left: 90px;
    }
    
    header .logo img {
        height: 70px;
    }

    .navbar-desktop{
        margin-right:70px
    }
    .navbar-desktop ul li{
        font-size: 0.8em;
        margin-inline: 20px;
    }

    .hero-text{
        margin-left:100px;
    }
    .services {
        gap: 20px 50px;
    }
}

@media (max-width: 1020px){
    .container{
        width: 100%;
    }
    header .logo img {
        height: 65px;
    }

    .navbar-desktop{
        margin-right: 70px;
    }

    .navbar-desktop ul li{
        font-size: 0.8em;
        margin-inline: 15px;
    }
}

@media (max-width: 1005px) {
    .container{
        width: 100%;
    }
    header .logo img {
        height: 65px;
    }

    .navbar-desktop{
        margin-right: 100px;
    }

    .navbar-desktop ul li{
        font-size: 0.8em;
        margin-inline: 15px;
    }
}

@media (max-width: 974px){
    .container{
        width: 100%;
    }

    header .logo {
        margin-left: 40px;
    }
    header .logo img {
        height: 65px;
    }

    .navbar-desktop{
        margin-right: 30px;
        gap: 10px;
    }

    .navbar-desktop ul li{
        font-size: 0.8em;
        margin-inline: 10px;
    }
}

@media (max-width: 878px) {
    .container {
        width: 100%;
    }

    .navbar-desktop {
        margin-right: 10px;
    }
    
    .hero-text{
        margin-left: 70px;
        margin-bottom: 30px;
        align-items: center;
    }
    .hero-text h1{
        font-size: 2em;
        font-weight: bold;
    }
    .hero-text p{
        font-size: 0.8em;
        padding-right: 100px;
    }

    .hero img{
        width:100%;
        height: auto;
    }

    .content {
        justify-content: center;
        width: 100%;
        padding: 50px 20px;
        flex-direction: column;
    }
    .content-text{
        text-align: center;
        padding: 0;
    }
    .content-text h2{
        font-size: 1.8em;
        color: #2e63af;
        text-align: center;
    }
    .content-text p{
        font-size: 1em;
        color: #666;
        text-align: justify;
    }
    .ocean-content-image{
        position: relative;
        width: 97%;
        height: auto;
        margin-left: 0;
        margin-right: 0;
        padding-top: 30px;
        flex: 1;
        text-align: center;
        z-index: 1; 

    }

    .benefits {
        flex-direction: column;
        background-size: 120%;
        padding: 50px 20px;
    }
    .benefits-text{
        max-width: 90%;
        margin-left: 0;
    }
    .benefits-text h2{
        font-size: 1.8em;
        text-align: center;
    }
    .benefits-text ul{
        font-size: 1em;
    }

    .ocean-action{
        flex-direction: column;
        background-size: cover;
        padding: 100px 20px;        
    }
    .ocean-action-text{
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .ocean-action-text h2{
        font-size: 1.8em;
        text-align: center;

    }
    .ocean-action-text p{
        font-size: 1em;
        text-align: justify;
    }

    .action-button {
        align-self: center;
        padding: 10px 15px;
        font-size: 0.8em;
        margin-left: 0;
        margin-right: 0;
    }

    




    @media (max-width: 768px) {
        .container {
            width: 100%;
        }
    
        .navbar-desktop {
            display: none;
        }
    
        .burger-menu {
            display: flex;
            flex-direction: column;
            margin-right: 100px;
            cursor: pointer;
        }
    
        .burger-menu span {
            width: 30px;
            background-color: #2e63af;
            margin: 3.0px 0;
            border-radius: 60px;
            transition: all 0.3s ease-in-out;
            align-self: center;
            transition: transform 0.2s, opacity 0.3s;
    
        }
        .burger-menu span:nth-child(1),
        .burger-menu span:nth-child(2),
        .burger-menu span:nth-child(3) {
            height: 2.5px; /* Standardize height */
        }
        .burger-menu:hover {
            color: #74d0f3;
        }
    
        .burger-menu.open span:nth-child(1){
            transform: translateY(9px) rotate(45deg);
        }
        .burger-menu.open span:nth-child(2){
            opacity: 0;
        }
        .burger-menu.open span:nth-child(3){
            transform: translateY(-9px) rotate(-45deg);
        }
    
        .nav-menu-mobile {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 45%;
            height: auto;        
            background-color: #f0f0f1;
            top: 70%;
            position: absolute;
            border-radius: 10px;
            opacity: 0.95;
            margin-left: auto;
            margin-right: 150px;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease-in-out;
            padding: 0px 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 5.9s ease-in-out
        }
    
        .nav-menu-mobile ul{
            padding: 0px 0;
        }
        .nav-menu-mobile ul li a {
            text-decoration: none;
            color: #2e63af;
            font-weight: bold; /* Set normal font weight for the main menu items */
            font-size: 1em;
            display: block; /* Ensure each menu item is treated as a block element */
            text-align: left; /* Left align text */
            padding-bottom: 0.5px; /* Adjust spacing between main text and subtext */
            transition: color 0.2s ease; /* Smooth transition for text color */
        }
        .nav-menu-mobile ul li {
            list-style: none;
            margin: 1rem 0;
         }
         .nav-menu-mobile ul li a span {
            font-size: 0.8em; /* Adjusted font size for the subtext */
            display: block; /* Ensure subtext is on a new line */
            font-weight: normal; /* Keep subtext normal weight */
        }
        .nav-menu-mobile ul li .dropdown-content li a:hover {
            background-color: rgba(116, 208, 243, 0.3); /* Adjust alpha value (0.5 for 50% opacity) */
        }
        
        .nav-menu-mobile ul li:hover > a {
            color: rgba(116, 208, 243, 1); /* Hover text color */
        }
        
        .nav-menu-mobile ul li:hover .dropdown-content {
            display: block;
        }
        .nav-menu-mobile.open {
            display: flex;
            max-height: 500px;
        }
        .action-button {
            margin-left: 30%;
        }
        .footer-nav{
            margin-top: 20px;
            flex-wrap: wrap;
        }
    
    }
}




/**For Mobile Phones Only**/
@media (max-width: 591px) {

    .container {
        width: 100%;
    }

    header .logo {
        margin-left: 50px;
    }

    .burger-menu {
        margin-right: 50px;
        cursor: pointer;
    }
    .burger-menu span {
        width: 20px;
    }
   
    .nav-menu-mobile {
        width: 35%;
        margin-right: 60px;
        padding: 20px;
    }
    .nav-menu-mobile{
        padding: 0px 20px;
    }
    .nav-menu-mobile ul li {
        list-style: none;
        margin: 0.9rem 0;
     }
     .nav-menu-mobile ul li a span {
        font-size: 0.7em; /* Adjusted font size for the subtext */
        display: block; /* Ensure subtext is on a new line */
        font-weight: normal; /* Keep subtext normal weight */
    }
    .nav-menu-mobile ul li a {
        font-size: 0.9em;
    }
    .nav-menu-mobile.open{
        display: block;
        background-color: #f0f0f1;
        width: 50%;
        z-index: 1000;
    }

    .hero {
        display: none;
    }
    .hero-mobile {
        display: flex;
        flex-wrap: wrap;
        padding-top: 50px;
        align-items: center;
    }

    .hero-mobile-text {
        position: absolute;
        left: 40%;
        transform: translate(-50%, -50%);
        z-index: 2;
        color: #fff;
        align-items: left;
        margin-top: 20%;
        flex-wrap: nowrap;
    }
    .hero-mobile-text h1 {
        font-size: 1.7em;
        font-weight: bold;
    }
    .content{
        padding: 50px 20px;
    }
    .content-text h2{
        font-size: 1.5em;
        color: #2e63af;
    }
    .content-text p{
        font-size: 1.0em;
        text-align: center;
    }
    
    .benefits{
        padding: 0;
    }
    .benefits-text{
        max-width: 100%;
        padding: 20px;
    }
    .benefits-image{
        width: 97%;
        margin: auto;
    }
    .benefits-text h2{
        font-size: 1.5em;
    }
    .benefits-text ul{
        font-size: 1.0em;
    }
    .ocean-benefits-image {
        width: 97%;
    }

    .ocean-action{
        display: flex;
        padding: 50px 20px;
    }

    .ocean-action-text{
        display: inline-flexbox;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        justify-items: center;
        align-content: center;
    }
    .ocean-action-text h2{
        font-size: 1.5em;
        margin-top: 30px;
        margin-right: 0;
        margin-left: 0;
    }
    .ocean-action-text p{
        font-size: 1.0em;
        text-align: center;
    }
    .action-button{
        align-self: center;
        margin: auto;
    }

    .whatsapp-icon a img {
        width: 35px;
    } 

    .footer {
        padding-left: 20px;
        padding: 0;
    }
    .footer-info{
        font-size: 0.8em;
    }
    .footer-nav h3{
        font-size: 0.8em;
    }
    
    .footer-nav ul li {
        font-size: 0.8em;
    }
    .footer-info-copyright{
        font-size: 0.6em;
    }
    .social-media img {
        height: 20px;
    }
    .addresses {
        gap: 50px;
        align-self: center;
        padding-right: 20px;
    }
}

@media (max-width: 449px) {
    .container {
        width: 100%;
    }
    header .logo{
        margin-left: 40px;
    }
    header .logo img{
        height: 40px;
    }

    .hero-mobile-text{
        left: 40%;
        font-size: 0.8em;
    }
}

@media (max-width: 450px){
    .container{
        width: 100%;
    }
    header .logo{
        margin-left: 20px;
    }
    header .logo img {
        height: 40px;
    }

    .burger-menu{
        margin-right: 20px;
    }

    .nav-menu-mobile{
        top: 65px;
    }

}